home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / barcodes.zip / SAMPLE1.ZIP / BARTEST.H < prev    next >
C/C++ Source or Header  |  1994-11-07  |  1KB  |  41 lines

  1. // bartest.h : main header file for the BARTEST application
  2. //
  3. // (c) Copyright 1994 HEX TECHNOLOGY. All rights reserved.
  4. // This sample code is provided as a example implementation
  5. // using barcodes.dll.  You may only distribute or modify this
  6. // code if you purchase a license for barcodes.dll.
  7.  
  8.  
  9. #ifndef __AFXWIN_H__
  10.     #error include 'stdafx.h' before including this file for PCH
  11. #endif
  12.  
  13. #include "resource.h"       // main symbols
  14.  
  15. /////////////////////////////////////////////////////////////////////////////
  16. // CBarApp:
  17. // See bartest.cpp for the implementation of this class
  18. //
  19.  
  20. class CBarApp : public CWinApp
  21. {
  22. public:
  23.     CBarApp();
  24.  
  25. // Overrides
  26.     virtual BOOL InitInstance();  
  27.     virtual int ExitInstance();
  28.  
  29. // Implementation
  30.  
  31.     //{{AFX_MSG(CBarApp)
  32.     afx_msg void OnAppAbout();
  33.         // NOTE - the ClassWizard will add and remove member functions here.
  34.         //    DO NOT EDIT what you see in these blocks of generated code !
  35.     //}}AFX_MSG
  36.     DECLARE_MESSAGE_MAP()
  37. };
  38.  
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.